.about-header {
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    position: relative;
}

#about-main-page {
    background-image: url(/wp-content/themes/Gabay2223\ Website/assets/about-pics/about-banner.webp); 
}

#about-advocacy-header {
    background-image: url(/wp-content/themes/Gabay2223\ Website/assets/about-pics/advo-banner.webp); 
    background-position: center; 
}

#about-history-header {
    background-image: url(/wp-content/themes/Gabay2223\ Website/assets/about-pics/history-banner.webp); 
}

#about-offices-header, #about-committees-header {
    background-image: url(/wp-content/themes/Gabay2223\ Website/assets/about-pics/offices-committees-banner.webp); 
    background-position: center 
}

#about-org-structure-header {
    background-image: url(/wp-content/themes/Gabay2223\ Website/assets/about-pics/org-structure-banner.webp);
    background-position: center; 
}

.about-header-black-layer {
    position: absolute;
    height: 100%;
    width: 100%;
}

.about-header-heading {
    color: white;
    font-family: 'Myriad Pro bold';
    font-size: var(--title-size);
    user-select: none;
    z-index: 2;
    text-align: center;
    margin: 0 var(--default-padding);
}

#about-content-container {
    height: fit-content;
    background-color: white;
}

#mission-vision-objectives-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--default-padding) var(--default-padding) 0 var(--default-padding);
}

#mission-vision-objectives-heading > h1 {
    color: var(--green);
    font-size: var(--heading);
    font-family: 'Barlow', sans-serif;
    font-weight: 800;
    width: 100%;
    text-align: center;
}

#mission-vision-objectives-heading > p {
    color: var(--green);
    font-size: var(--sectonrs-body-heading);
    font-family: 'Barlow', sans-serif;
    font-weight: 800;
    width: 100%;
    text-align: center;
}

#mission-vision-objectives-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.mission-vision-objectives-button {
    margin: 0 10px;
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    padding: .3rem 1rem;
    border-radius: 112px;
    font-weight: 800;
    border: 2px solid transparent;
    user-select: none;
    cursor: pointer;
}

.mission-vision-objectives-button:hover {
    border-color: black;
}

.about-button-selected {
    border-color: var(--green);
}

.about-button-selected:hover {
    border-color: var(--green) !important;
}

#mission-vision-objectives-container {
    height: 80vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;  
}

#mission-container, #vision-container, #objectives-container {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 var(--default-padding) var(--default-padding) var(--default-padding);
    box-sizing: border-box;

    display: flex;
    gap: 2rem ; 
    flex-direction: row;
    justify-content: center;
    align-items: center;

    opacity: 0;
    background-color: white;
    transition: .5s ease-in-out;
}

.mvo-pane-selected {
    opacity: 1 !important;
}

.mvo-content-col, .mvo-picture-col {
    flex: 1 1 50%;
}

.mvo-content-col {
    font-family: 'Barlow', sans-serif;
}

.about-mvo-heading {
    font-size: var(--sectonrs-body-heading);
    font-weight: bold;
    margin-bottom: .8rem;
}

.about-mvo-content {
    font-size: var(--sectors-body-font-size);
}

.mvo-picture-col {
    overflow: hidden;
    padding-top: 5rem;
}

.mvo-picture-col > img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* --------------- THRUST AND GOALS --------------- */

 #thrusts-goals {
    background-color: var(--green);
    color: white;
    padding: var(--default-padding);
 }

 #about-thrust > h1 {
    font-size: var(--heading);
    font-family: 'Barlow', sans-serif;
    font-weight: 800;
    text-align: center;
    padding-bottom: 2rem;
 }

 #about-thrust > p {
    font-size: var(--sectors-body-font-size);
    font-family: 'Barlow', sans-serif;
    text-align: center;
    padding-bottom: 6rem;
 }

 #about-goals > h1 {
    font-size: var(--heading);
    font-family: 'Barlow', sans-serif;
    font-weight: 800;
    text-align: center;
    padding-bottom: 2rem;
 }

 #about-goals > h2 {
    font-size: var(--sectors-body-font-size);
    font-family: 'Barlow', sans-serif;
    font-weight: bold;
 }

 #about-goals > p {
    font-size: var(--sectors-body-font-size);
    font-family: 'Barlow', sans-serif;
 }

 #about-goals > p:after {
    content: '.';
    color: transparent;
    user-select: none;
    height: 1rem;
    display: block;
 }

 /* --------------- QUICK LINKS --------------- */
#about-quick-links {
    padding: var(--default-padding);
    display: flex;
    gap: 24px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    height: fit-content;
}

.about-quick-link {
    flex: 0 1 calc(calc(100% - 48px)/3);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    color: black;

    transition: .4s ease-in-out;
}

.about-quick-link:hover {
    transform: scale(1.1);
}

.about-quick-link:hover > .about-quick-link-desc {
    color: var(--green);
}

.about-quick-link-avatar {
    height: 250px;
    overflow: hidden;
}

.about-quick-link-avatar img {
    height: 100%;
    width: 100%;
}

.about-quick-link-desc {
    font-size: var(--sectonrs-body-heading);
    font-family: 'Barlow', sans-serif;
    font-weight: bold;
    text-align: center;

    transition: .2s ease-in-out;
}



@media screen and (max-width: 1000px) {
    #mission-container, #vision-container, #objectives-container {
        flex-direction: column-reverse;
    }

    .mvo-content-col, .mvo-picture-col {
        flex: 1 1 100%;
    }

    .mvo-picture-col {
        padding-top: 1rem;
    }

    .about-quick-link {
        flex: 0 1 calc(calc(100% - 24px)/2);
    }
}

@media screen and (max-width: 500px) {

    .about-quick-link {
        flex: 0 1 100%;
    } 
    
    #about-quick-links {
        gap: 32px;
    }
}

@media screen and (max-width: 450px) {

    .mission-vision-objectives-button {
        margin: 0 5px;
    }    
}
